home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #4
/
Amiga Plus CD - 2000 - No. 4.iso
/
Tools
/
GraKa
/
VLRecNG
/
Install
< prev
next >
Wrap
Text File
|
2000-01-08
|
3KB
|
72 lines
; Innovative VLRec NG Installation utility
; (C) 2000 by Felix Schwarz/Innovative
; $VER: 4.0
(if (= @language "deutsch")
(
; ----------------------------
; Let`s use German as language
; ----------------------------
(set #welcome "\n\n\n\nVLRec NG 4.0\n©1997-2000 by Felix Schwarz\n\n\nWillkommen zur VLRec NG Installation\nDieses Script wird VLRec NG auf Ihre HD installieren\n")
(set #askinstall "Wohin soll VLRec NG installiert werden. (Es wird ein Verzeichnis erstellt)")
(set #copylibs "Überprüfe und kopiere benötigte Libraries..")
(set #copyfxpaint "Kopiere VLRec NG-Dateien..")
(set #byebye "\n\n\n\n\n\n\nVLRec NG ist nun auf Ihrer Festplatte installiert.")
)
(
; -----------------------------
; Let`s use English as language
; -----------------------------
(set #welcome "\n\n\n\nVLRec NG 4.0\n©1997-2000 by Felix Schwarz\n\n\nWelcome to the VLRec NG installation\nThis script will install VLRec NG on your HD\n")
(set #askinstall "Where shall VLRec NG be installed. (A directory will be created)")
(set #copylibs "Checking and installing required libraries..")
(set #copyfxpaint "Copying VLRec NG-files..")
(set #byebye "\n\n\n\n\n\nVLRec NG is now installed on your HD.")
)
)
; --------------------------------------
; Ok, let`s begin with a small greeting!
; --------------------------------------
(message #welcome)
(welcome)
; --------------------------------------
; Set destination-directory for VLRec NG
; --------------------------------------
(set #installdir
(askdir
(prompt #askinstall)
(help @askdir-help)
(default @default-dest)
)
)
; ----------------
; Copy basic files
; ----------------
(copyfiles
(source "Inst/")
(dest #installdir)
(pattern "#?")
)
; --------------
; Copy libraries
; --------------
(working #copylibs)
(run "copylib Inst/VLRec_NG/Libs/fxWARP.library LIBS:fxWARP.library")
(run "copylib Inst/VLRec_NG/Libs/vlab.library LIBS:vlab.library")
(run "copylib Inst/VLRec_NG/Libs/iff.library LIBS:iff.library")
(makedir "Libs:VHI")
(run "copylib Inst/VLRec_NG/VHI/vlab.vhi LIBS:VHI/vlab.vhi")
(run "copylib Inst/VLRec_NG/VHI/mvd819.vhi LIBS:VHI/mvd819.vhi")
; -------------------------
; Say Bye-Bye and Thank-You
; -------------------------
(message #byebye)